home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ Ver Disp 3.xpl < prev    next >
Text File  |  2001-01-21  |  2KB  |  60 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="4"
  4. "UIPATH"="Information\Applications"
  5. "NAME"="Microsoft Plus! Check"
  6. "VERSION"="1.27"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Plus! 95"
  9. "TEXT 2"="Plus! 98"
  10. "TEXT 3"="Plus! for Kids"
  11. "TEXT 4"="Plus! 2000"
  12. "DESCRIPTION 1"="This plug-in displays if Plus! is installed or not."
  13. "DESCRIPTION 2"="You can't change anything!!!"
  14. "AUTHOR"="Xteq Systems (CptSiskoX)"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"=" "
  19.  
  20.  
  21.  
  22. sV1="HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Plus!\DisplayName"
  23.     sV1_C="Microsoft« Plus! for Windows« 95"
  24. sV2="HKLM\Software\Microsoft\Plus!98\Setup\Installed"
  25. sV3="HKLM\SOFTWARE\Microsoft\Microsoft Kids\Kids Plus!\Registration\ProductID"
  26. sV4="HKLM\SOFTWARE\Microsoft\DirectPlay\Applications\Plus! Game Pack - Cards and Puzzles\Launcher\"
  27.  
  28. Sub Plugin_Initialize 
  29. sT="Not installed"
  30. s=RegReadValue(sv1)
  31. If s=sV1_C then sT="Detected"  
  32. Call SetUIElement(1,sT)
  33.  
  34. sT="Not installed"
  35. s=RegReadValue(sv2)
  36. If s="1" then sT="Detected"  
  37. Call SetUIElement(2,sT)
  38.  
  39. sT="Not installed"
  40. s=RegReadValue(sV3)
  41. If IsEmpty(s)=false then sT="Detected"  
  42. Call SetUIElement(3,sT)
  43.  
  44. sT="Not installed"
  45. s=RegReadValue(sv4)
  46. If s="BicyCrds.exe" then sT="Detected"  
  47. Call SetUIElement(4,sT)
  48.  
  49. Call Disable 'user can't change anything!
  50. End Sub
  51.  
  52. Sub Plugin_CheckData(ElementIndex)
  53. End Sub
  54.  
  55. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  56. End Sub
  57.  
  58. Sub Plugin_Terminate 
  59. End Sub
  60.